This Ansible role installs common debugging tools to help with system troubleshooting and development.
Available variables are listed below, along with default values (see defaults/main.yml):
# Alternative package names for Debian-based systems
debug_tools_ripgrep_alt_package: "ripgrep"
debug_tools_bat_alt_package: "batcat"
# Create a symlink from batcat to bat for consistency
debug_tools_create_bat_symlink: true
# Additional debugging tools to install
# Example: ["strace", "lsof", "tcpdump"]
debug_tools_additional_packages: []
- hosts: servers
roles:
- role: debug_tools
debug_tools_additional_packages:
- strace
- lsof
- tcpdump
MIT
Created by Cosmo-Tech